1. 在首页添加显示问答的列表,并定义好相应的样式。
无序列表
<ul >
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
2. 用字典向index.html传递参数。
@app.route('/')def index(): context={ 'user':'mis' } return render_template('index.html',**context)
{% extends 'base.html' %} { % block title %}首页{% endblock %} { % block main %}{ % endblock %}{
{ username }}contextx